/* #218966
    #F8A000
    
*/
*
{
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body
{
    background: rgb(219, 219, 219);
    width: 100%;
    
}
header
{
    width: 100%;
    height: 500px;
    background-image: url(2.jpg);
    background-size:cover;
}

.logo{
    width: 250px;
    margin-top: 80px;
    margin-left: 50px;
}

nav
{
    width: 100%;
    height: 60px;
    background: linear-gradient(to right, #ff0000, #530101 );
    box-shadow: 0px 2px 5px 0.5px black;
    position: -webkit-sticky;
    position: sticky;
    margin-top: 0px;
    top: 0;
    z-index: 10;
    
}
nav ul{
    display: flex;
    padding: 8px;
    align-items: center;
}

nav ul li, .Icon{
    list-style: none;
    padding-bottom: 8px;
    position: relative;
    margin: 10px;

}

nav ul li::before, .Icon::before{
    content: '';
    position: absolute;
    width: 100%;
    height: 5px;
    background-color: rgb(0, 0, 0);
    border-radius: 10px;
    left: 0;
    bottom: 0;
    transform:scale(0,1);
    transition: ease-in-out .5s;
}

nav ul li a{
    text-decoration: none;
    color: rgb(0, 0, 0);
    text-shadow: 2px 2px 5px #24000073;
    font-weight: 600;
    font-size: 25px;
    text-transform: uppercase;
}
nav ul li:hover::before, .Icon:hover:before{
    transform:scale(1,1);
}

.flex
{
    
    display: flex;
    flex-wrap:wrap;
    justify-content: last baseline;
    
}

.mainAndAside
{
    display: flex;
}
main
{
    width: 90%;
    background: 
    url(bcgrnd.png) repeat;
    border-radius: 5px;
    padding: 10px;
    margin: 10px 1%;
    position: relative;
    
}

.backgroundImg
{
    background: url(1.jpg) right;
    background-size: cover
}
/*.backgroundImg2
{
    background: url(front-view-young-male-courier-blue-uniform-mask-yellow-background.jpg) right;
    background-size: cover
}*/
.firstArticle
{
    color: black;
    text-align: center;
    font-size: 40px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-family: 'Righteous', cursive;
    font-family: 'Vujahday Script', cursive;
    word-spacing: -10px;
    text-shadow: 3px 3px 4px rgb(150, 150, 150);
}
input
{
    backdrop-filter: 1px;
}
article
{
    padding: 20px;
    margin: 10px 0px;
    background-color: rgba(255, 255, 255, 25%);
    height:max-content;
    border-radius: 1px;
    backdrop-filter: blur(5px);
}


.text
{
    font-size: 30px;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    
}

.btn
{
    margin-left: 35%;
    margin-top: 10px;
    font-size: 20px;
    display: inline-block;
    background-color: rgb(190, 0, 0);
    color: white;
    padding: 10px;
    border-radius: 5px;
    transition: 1s;
}

.btn:hover
{
    background-color: rgb(117, 0, 0);
    border-radius: 10px;
    color: white;
}
/*------------ aside style ------------*/
aside
{
    width: 7%;
    background-color: white;
    margin: 10px 1% 0 0;
    border-radius: 5px ;
    padding: 10px;
}
.Icon
{
    width: 86px;
    font-size: 16px;
}
.Icon span, .Icon a
{
    display: block;
    text-align: center;
    width: 86px;
}
aside h1
{
    margin-bottom: 20px;
    font-size: 30px;
    text-align: center;
}
.Icon:hover
{
    opacity: 70%;
}
